Add startup quote ritual (61 fact-checked interview quotes)#23
Merged
NewGraphEnvironment merged 2 commits intomainfrom Apr 14, 2026
Merged
Add startup quote ritual (61 fact-checked interview quotes)#23NewGraphEnvironment merged 2 commits intomainfrom
NewGraphEnvironment merged 2 commits intomainfrom
Conversation
task_plan.md, findings.md, progress.md set up for startup-quotes work. Branch: quotes-enable. Awaiting user-supplied people/topics before research. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
library(drift) now prints a random quote from 15 hip-hop artists on attach. Italic quote, grey attribution, clickable blue source hyperlink (OSC 8) to the primary-source interview. Suppress via options(drift.quote_show_source = FALSE). Curated using the soul /quotes-enable skill: parallel research agents pulled candidates from primary-source publications (Rolling Stone, Billboard, Complex, NPR, GQ, FADER, etc.), then an independent fact-check pass re-verified each quote via WebFetch on the cited URL. Unverified candidates dropped, not padded. Structure: - R/zzz.R: 15-line .onAttach, reads inst/extdata/quotes.csv, styles via cli. - data-raw/quotes_build.R: source of truth. R tibble with full provenance. Writes both audit and shipped CSVs when rerun. - data-raw/quotes_audit.csv: generated, in-repo, Rbuildignored. Full audit trail (source_type, source_outlet, verification_date). - inst/extdata/quotes.csv: shipped, slim (quote, author, source). - planning/active/: PWF record of research, fact-check, calibration decisions, and the lyric-pursuit lesson learned (interview-only; songwriter copyright too fraught for agent-curated lyric reproduction). Artists: Kendrick Lamar, Anderson .Paak, Bad Bunny, Young Thug, Travis Scott, Future, Metro Boomin, Playboi Carti, Ty Dolla Sign, Yeat, Takeoff, Offset, Mike WiLL Made-It, Statik Selektah, YoungBoy Never Broke Again. cli added to Imports for OSC 8 hyperlinks and styling. Version bumped to 0.2.1. R CMD check clean (no new NOTE/WARN). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
NewGraphEnvironment
added a commit
that referenced
this pull request
Apr 14, 2026
Move active planning files to planning/archive/2026-04-quotes-enable/ with outcome README. drift now ships 61 fact-checked interview quotes via /quotes-enable skill (PR #23, v0.2.1). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
library(drift)now prints a random fact-checked interview quote on attach, from 15 hip-hop artists (Kendrick, Bad Bunny, Young Thug, Future, Anderson .Paak, Takeoff, YoungBoy, Statik Selektah, Mike WiLL Made-It, and others). Italic quote, grey attribution, clickable bluesourcehyperlink (OSC 8) linking to the primary-source interview./quotes-enableskill. Multi-agent parallel research + independent fact-check pass. 77 candidates -> 61 shipped, 1 dropped on failed verification.data-raw/quotes_build.Ris the source of truth and writes bothdata-raw/quotes_audit.csv(full trail, in-repo, Rbuildignore'd) and the slim shippedinst/extdata/quotes.csv.Toggle via
options(drift.quote_show_source = FALSE)to suppress the source line.cliadded to Imports for OSC 8 styling.Test plan
devtools::load_all()andlibrary(drift)- quote prints with italic + grey author + blue clickable source in RStudio consoleR CMD check- no new NOTE/WARN (2 pre-existing NOTEs unrelated)inst/extdata/quotes.csvagainst the cited URLLyric policy
Interview speech only. Songwriter copyright + fair-use ambiguity ruled out agent-curated lyric reproduction. See
planning/active/findings.mdfor the decision record.